home *** CD-ROM | disk | FTP | other *** search
- ;
- ; PC-Write Pop-up Menu Configuration
- ;
- Comment ("Configured for PC-Write (special thanks to Bruce Gregory)")
- Comment ("")
- Comment ("Modified for Version 2.6 (by Don Teiser on 2/26/86)")
- Comment ("Modified for Version 2.7 (by Diana Sill on 10/1/86)")
-
- ; Parameters
- ;
- Sensitivity (4,6) ; (Xinc, Yinc)
- Hysteresis (2,2) ; (AutoX, AutoY)
- ReverseVideo (Yes) ; Menu is displayed in reverse video.
- FixedMenu (No) ; Menu is not in a fixed position.
- EnableBeep (No) ; Allows menu switching rather than beeping.
- ExitMenu ("Exit This Menu") ; Instead of "Exit Pop-up" as exit string.
- ;
- ; Cursor Definitions
- ;
- ArrowKeys: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- )
-
- ;
- ; Button Definitions
- ;
- LBM: Button(Menu(Mark)) ;Left button, Mark Menu
- LBP: Button(Menu(Page)) ;Left button, Page Menu
- MBE: Button(Menu(Edit)) ;Middle button, Edit Menu
- MBF: Button(Menu(File)) ;Middle button, File Menu
- RBJ: Button(Menu(Jump)) ;Right button, Jump Menu
- RBS: Button(Menu(Search)) ;Right button, Search Menu
- ;
- ; Menu Definitions
- ;
- Mark: Menu
- (
- Title("MARK")
- Item ("(To Page Menu)", Menu(Page), Button(LBP))
- Item ()
- Item ("Clear Marks", Keys([F5]))
- Item ()
- Item ("Mark", Keys([F6]))
- Item ("Delete", Keys([F4]))
- Item ("Move ", Keys([F6] [F5]))
- Item ("Copy ", Keys([F3] [F5]))
- Item ()
- Item ("Mark All", Keys([c-F5]))
- Item ("Copy to File", Keys([c-F6]))
- Item ("Un-Delete", Keys([c-F4] [F5]))
- Item ()
- )
- ;
- Page: Menu
- (
- Title("PAGE")
- Item ("(To Mark Menu)", Menu(Mark), Button(LBM))
- Item ()
- Item ("Left Margin", Keys([c-[]))
- Item ("Right Margin", Keys([c-]]))
- Item ()
- Item ("Ruler Line", Keys([F2]))
- Item ("Load Ruler", Keys([F2] [F6]))
- Item ()
- Item ("Break Pages", Keys([a-F7]))
- Item ("Location? ", Keys([a-F9]))
- Item ()
- )
- ;
- Edit: Menu
- (
- Title("EDIT")
- Item ("(To File Menu)", Menu(File), Button(MBF))
- Item ()
- Item ("Push/Overwr", Keys([c-V]))
- Item ("Reformat ", Keys([F7]))
- Item ("Wrap+/-,Para+", Keys([s-F7]))
- Item ("Upper/Lower", Keys([F8]))
- Item ("UPPER ONLY ", Keys([a-F8]))
- Item ("Center Line", Keys([s-F8]))
- Item ()
- Item ("Del Word <-", Keys([F4] [c-left] [F4]))
- Item ("Del Word ->", Keys([F4] [c-right] [F4]))
- Item ("Del Line End", Keys([F4] [end] [F4]))
- Item ("Del All Line", Keys([c-Y]))
- Item ()
- )
- ;
- File: Menu
- (
- Title("FILE")
- Item ("(To Edit Menu)", Menu(Edit),Button(MBE))
- Item ()
- Item ("Save", Keys([F1] [F3]))
- Item ("Save&Exit ", Keys([F1] [F2]))
- Item ("Save&Shell", Keys([F1] [F4]))
- Item ()
- Item ("Cancel&Exit ", Keys([F1] [F9] [F2]))
- Item ("Cancel&Shell", Keys([F1] [F9] [F4]))
- Item ()
- Item ("Rename File ", Keys([F1] [F5]))
- Item ("Switch Files", Keys([F1] [F6]))
- Item ("Insert File ", Keys([c-F3]))
- Item ()
- )
- ;
- Jump: Menu
- (
- Title("JUMP")
- Item ("(To Search Menu)", Menu(Search), Button(RBS))
- Item ()
- Item ("Beginning", Keys([a-=]))
- Item ("End of Text", Keys([a--]))
- Item ()
- Item ("Screen Back ", Keys([c-C]))
- Item ("Screen Ahead", Keys([c-R]))
- Item ()
- Item ("Paragr Back ", Keys([c-PgUp]))
- Item ("Paragr Ahead", Keys([c-PgDn]))
- Item ("Page Back ", Keys([F9] [a-T] [Enter] [Minus]))
- Item ("Page Ahead", Keys([F9] [a-T] [Enter] [Plus]))
- Item ()
- Item ("Set Marker", Keys([c-home]))
- Item ("GoTo Marker", Keys([c-end]))
- Item ()
- )
- ;
- Search: Menu
- (
- Title("SEARCH")
- Item ("(To Jump Menu)", Menu(Jump), Button(RBJ))
- Item ()
- Item ("Set Find ", Keys([F9]))
- Item ("Set Replace", Keys([F9][F10]))
- Item ()
- Item ("From Start", Keys([a-=]))
- Item ("From End ", Keys([a--]))
- Item ()
- Item ("Search Back ", Keys([Minus]))
- Item ("Search Ahead", Keys([Plus]))
- Item ()
- Item ("Replace Once", Keys([F10]))
- Item ("Replace All ", Keys([a-F10] [F9]))
- Item ()
- )
- ;
- ; Mouse Definition
- ;
- Mouse
- (
- Left (LBM)
- Middle (MBF)
- Right (RBJ)
- Cursor (ArrowKeys)
- )
-
-